7cf6caad2f6b21e791faa6e242f4660fd46d21d7,platform/lang-impl/src/com/intellij/ide/util/gotoByName/GotoFileModel.java,GotoFileModel,loadInitialCheckBoxState,#,102

Before Change


  @Override
  public boolean loadInitialCheckBoxState() {
    PropertiesComponent propertiesComponent = PropertiesComponent.getInstance(myProject);
    return propertiesComponent.isTrueValue("GoToFile.includeJavaFiles");
  }

  @Override

After Change


  public boolean loadInitialCheckBoxState() {
    PropertiesComponent propertiesComponent = PropertiesComponent.getInstance(myProject);
    return propertiesComponent.isTrueValue("GoToClass.toSaveIncludeLibraries") &&
           propertiesComponent.isTrueValue("GoToFile.includeJavaFiles");
  }

  @Override